home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
badcbid.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
827b
|
20 lines
/* RCSVER $Id: badcbid.sql,v 1.1 1999-02-25 15:10:05-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: badcbid.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the badcbid table. badcbid contains information
* from the bad cashbox id farebox record.
* Changes:
************************************************************************* */
CREATE TABLE badcbid
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_badcbid REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
CONSTRAINT pk_badcbid PRIMARY KEY (det_seq_num)
);